page.scss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. .profile-box {
  2. padding: .44rem 0 .6rem;
  3. height: 100vh;
  4. overflow-y: auto;
  5. background-color: #1f1f1f;
  6. -webkit-box-sizing: border-box;
  7. box-sizing: border-box;
  8. display: flex;
  9. flex-direction: column;
  10. .userContent {
  11. background: -webkit-gradient(linear, left top, left bottom, from(#ffaa30), to(#ffe6be));
  12. background: -webkit-linear-gradient(top, #ffaa30, #ffe6be);
  13. background: -o-linear-gradient(top, #ffaa30 0, #ffe6be 100%);
  14. background: linear-gradient(180deg, #ffaa30, #ffe6be);
  15. height: auto;
  16. }
  17. .userInfo {
  18. display: flex;
  19. -webkit-box-pack: justify;
  20. -ms-flex-pack: justify;
  21. justify-content: space-between;
  22. -webkit-box-align: start;
  23. -ms-flex-align: start;
  24. align-items: flex-start;
  25. height: .56rem;
  26. padding: .11rem .18rem;
  27. -webkit-box-sizing: border-box;
  28. box-sizing: border-box;
  29. margin-bottom: .23rem;
  30. &.active {
  31. margin-bottom: 0;
  32. }
  33. & > div {
  34. display: flex;
  35. -webkit-box-pack: justify;
  36. -ms-flex-pack: justify;
  37. justify-content: space-between;
  38. -webkit-box-align: center;
  39. -ms-flex-align: center;
  40. align-items: center;
  41. height: .36rem;
  42. font-size: .14rem;
  43. color: #000;
  44. .bgImg {
  45. width: .36rem;
  46. height: .36rem;
  47. margin-right: .1rem;
  48. background-color: transparent;
  49. background: url('/img/logo.webp') no-repeat center;
  50. background-size: 100% 100%;
  51. &.default {
  52. background-size: 80% 80%;
  53. }
  54. }
  55. & > div {
  56. display: -webkit-box;
  57. display: -ms-flexbox;
  58. display: flex;
  59. -webkit-box-orient: vertical;
  60. -webkit-box-direction: normal;
  61. -ms-flex-direction: column;
  62. flex-direction: column;
  63. height: .36rem;
  64. -webkit-box-pack: justify;
  65. -ms-flex-pack: justify;
  66. justify-content: space-between;
  67. }
  68. .phone {
  69. font-size: .12rem;
  70. }
  71. }
  72. .goto {
  73. display: flex;
  74. align-items: center;
  75. cursor: pointer;
  76. }
  77. .iconfont {
  78. font-size: .16rem;
  79. font-weight: 700;
  80. -webkit-transform: rotate(180deg);
  81. -ms-transform: rotate(180deg);
  82. transform: rotate(180deg);
  83. margin-left: .04rem;
  84. }
  85. }
  86. .coin {
  87. display: flex;
  88. justify-content: space-between;
  89. padding: .07rem 0 .3rem;
  90. margin: 0 .18rem;
  91. border-top: .01rem dotted #d9a801;
  92. & > div {
  93. display: flex;
  94. -webkit-box-align: center;
  95. -ms-flex-align: center;
  96. align-items: center;
  97. width: 50%;
  98. -webkit-box-sizing: border-box;
  99. box-sizing: border-box;
  100. &:first-child {
  101. border-right: .01rem dotted #d9a801;
  102. }
  103. .iconfont {
  104. margin: 0 .08rem;
  105. font-size: .18rem;
  106. color: #000;
  107. &.icon-gift2 {
  108. width: .32rem;
  109. }
  110. }
  111. & > div {
  112. flex: 1;
  113. display: flex;
  114. flex-direction: column;
  115. }
  116. div {
  117. span {
  118. font-size: .12rem;
  119. color: #333;
  120. display: flex;
  121. align-items: center;
  122. .a {
  123. width: .14rem;
  124. margin-left: .03rem;
  125. }
  126. }
  127. .num {
  128. width: 100%;
  129. height: auto;
  130. display: flex;
  131. span {
  132. font-size: .14rem;
  133. &:first-child {
  134. margin-right: .04rem;
  135. }
  136. }
  137. }
  138. }
  139. }
  140. }
  141. .link {
  142. width: 100%;
  143. height: auto;
  144. margin-top: -.22rem;
  145. display: flex;
  146. align-items: center;
  147. justify-content: center;
  148. span {
  149. width: 1.63rem;
  150. height: .44rem;
  151. line-height: .44rem;
  152. background: -o-linear-gradient(top, #ff9323, #ff6a01);
  153. background: linear-gradient(180deg, #ff9323, #ff6a01);
  154. border-radius: .04rem;
  155. color: #fff;
  156. font-size: .14rem;
  157. margin: 0 .08rem;
  158. text-align: center;
  159. }
  160. }
  161. }